home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 1
/
LSD Compendium Deluxe 1.iso
/
a
/
programming
/
assemblers
/
cas.lha
/
semi.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-11
|
137 b
|
9 lines
#include <stdio.h>
main() {
int Ch;
while ((Ch = getchar()) != EOF) {
if (Ch == ';') putchar(';');
putchar(Ch);
}
}